home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
misc_src
/
knowhow4
/
formline.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-11-01
|
506b
|
23 lines
/* FORMLINE.H FormLine is the Line with Carcase
Coords are TEXT.
*/
#ifndef __FORMLINE_H_
#define __FORMLINE_H_
#include "line.h"
#include "carcase.h"
#include "output.h"
class FormLine : public Carcase, public Line
{
protected:
BORDERS border_type;
public:
FormLine(BORDERS b_t) { border_type = b_t; }
void show(loc xy, int len, char* text = 0, int pat = 0);
void outtextxy(loc xy, int len, char* text, int pat = 0);
};
#endif __FORMLINE